home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Effects / Alienwah.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  78 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Alienwah.h - "AlienWah" effect
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef ALIENWAH_H
  24. #define ALIENWAH_H
  25. #include "../globals.h"
  26. #include "Effect.h"
  27. #include "EffectLFO.h"
  28.  
  29.  
  30. #define MAX_ALIENWAH_DELAY 100
  31.  
  32. struct COMPLEXTYPE {
  33.     REALTYPE a,b;
  34. };
  35.  
  36. class Alienwah:public Effect {
  37.     public:
  38.     Alienwah(int insetion_,REALTYPE *efxoutl_,REALTYPE *efxoutr_);
  39.     ~Alienwah();
  40.     void out(REALTYPE *smpsl,REALTYPE *smpsr);
  41.  
  42.         void setpreset(unsigned char npreset);
  43.     void changepar(int npar,unsigned char value);
  44.     unsigned char getpar(int npar);
  45.     void cleanup();
  46.         
  47.     private:
  48.     //Parametrii Alienwah
  49.     EffectLFO lfo;//lfo-ul Alienwah
  50.     unsigned char Pvolume;
  51.     unsigned char Ppanning;
  52.     unsigned char Pdepth;//the depth of the Alienwah
  53.     unsigned char Pfb;//feedback
  54.     unsigned char Plrcross;//feedback
  55.     unsigned char Pdelay;
  56.     unsigned char Pphase;
  57.  
  58.     
  59.     //Control Parametrii
  60.     void setvolume(unsigned char Pvolume);
  61.     void setpanning(unsigned char Ppanning);
  62.     void setdepth(unsigned char Pdepth);
  63.     void setfb(unsigned char Pfb);
  64.     void setlrcross(unsigned char Plrcross);
  65.     void setdelay(unsigned char Pdelay);
  66.     void setphase(unsigned char Pphase);
  67.     
  68.     //Valorile interne
  69.     int insertion;
  70.     REALTYPE panning,fb,depth,lrcross,phase;
  71.     COMPLEXTYPE *oldl,*oldr;
  72.     COMPLEXTYPE oldclfol,oldclfor;
  73.     int oldk;
  74. };
  75.  
  76. #endif
  77.  
  78.